home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / __SETIDX.HDR < prev    next >
Text File  |  1994-04-25  |  874b  |  43 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _SetIndex( cFileName, cIndexName ) --> NIL
  8.  
  9. PARAMETERS:
  10.  
  11. cFileName  : Database File Name
  12. cIndexName : Index File Name (Optional)
  13.  
  14. SHORT:
  15.  
  16. Open Indexes (and set controlling index) according to definition file.
  17.  
  18. DESCRIPTION:
  19.  
  20. SEE _ReIndex() for full description
  21.  
  22. NOTE:
  23.  
  24.  
  25.  
  26. EXAMPLE:
  27.  
  28. _SetIndex('MAIN.DBF')
  29.  
  30. Result: opens all index files for MAIN.DBF i.e.:
  31.  
  32.     SET INDEX TO MAIN1, MAIN2, MAIN3
  33.  
  34.  
  35. _SetIndex('MAIN.DBF','MAIN3.NTX')
  36.  
  37. Result: Same as above, but MAIN3.NTX is the controlling index i.e:
  38.  
  39.     SET INDEX TO MAIN3, MAIN1, MAIN2
  40.  
  41.  
  42. ******************************************************************************/
  43.